Carbon


QDRRectProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDRRectProcPtr) (
    GrafVerb verb, 
    Rect *r, 
    SInt16 ovalWidth, 
    SInt16 ovalHeight
);

You would declare your function like this if you were to name it MyQDRRectCallback:

void MyQDRRectCallback (
    GrafVerb verb, 
    Rect *r, 
    SInt16 ovalWidth, 
    SInt16 ovalHeight
);
verb
r
ovalWidth
ovalHeight

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)